home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000416_news@watsun.cc.columbia.edu _Mon Mar 29 10:49:18 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA07260
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 29 Mar 1999 10:49:18 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA26367
  7.     for kermit.misc@watsun.cc.columbia.edu; Mon, 29 Mar 1999 10:45:15 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: setting up kermit
  11. Date: 29 Mar 1999 15:45:09 GMT
  12. Organization: Columbia University
  13. Message-ID: <7do765$pns$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <7do5ok$9ra$1@nnrp1.dejanews.com>,  <jf3@my-dejanews.com> wrote:
  17. : Thanks for the hints... however, I am still getting the same errors.  I
  18. : have tried setting both the user and group owner of wermit to uucp. I
  19. : played with the SUID and SGID bits on wermit.  I tried changing the
  20. : owner of /dev/cua1 from root to uucp.  But I am still getting:
  21. : ?Connection on /dev/cua1 is not open.
  22. : ?Connection on /dev/cua1 is not open.
  23. : Trying again
  24. : ?Connection on /dev/cua1 is not open.
  25. : ?Connection on /dev/cua1 is not open.
  26. : Trying again
  27. A script should test commands like "set line" for success or failure:
  28.  
  29.   set line /dev/cua1
  30.   if fail exit 1 Can't assign /dev/cua1
  31.  
  32. The "set line /dev/cua1" should give you an error message saying why it
  33. failed: no such device, device is in use, access to lockfile directory
  34. denied, etc.
  35.  
  36. Find the cu program on your computer.  Make sure it works with the same
  37. device.
  38.  
  39. Then (as root) give the Kermit program the same owner, group, and
  40. permissions as cu.
  41.  
  42. - Frank